home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / intro.dir / 00019.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  549 b   |  35 lines

  1. on mouseDown
  2.   global z
  3.   if z = 0 then
  4.     SetCursor(#none)
  5.   else
  6.     if z = 1 then
  7.       SetCursor(#normal)
  8.     else
  9.       if z = 2 then
  10.         SetCursor(#wait)
  11.       else
  12.         if z = 3 then
  13.           SetCursor(#updown)
  14.         else
  15.           if z = 4 then
  16.             SetCursor(#leftright)
  17.           else
  18.             if z = 5 then
  19.               SetCursor(#hand)
  20.             end if
  21.           end if
  22.         end if
  23.       end if
  24.     end if
  25.   end if
  26.   set z to z + 1
  27.   if z = 6 then
  28.     set z to 0
  29.   end if
  30. end
  31.  
  32. on exitFrame
  33.   go(the frame)
  34. end
  35.